web3.js@0.2x.x web3.fromAscii
web3.fromAscii(string [, padding])
ASCII 文字列を HEX 文字列に変換します。
パラメータ
1. String
ASCII 文字列
2. Number
オプショナル
返される HEX 文字列のバイト数
戻り値
String
HEX 文字列
サンプルコード
code:example.js
var str = web3.fromAscii('ethereum');
console.log(str); // "0x657468657265756d"
var str2 = web3.fromAscii('ethereum', 32);
console.log(str2); // "0x657468657265756d000000000000000000000000000000000000000000000000"
参考